home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 051-075 / scopedisk57 / expand / nextcode.h < prev    next >
C/C++ Source or Header  |  1995-03-19  |  881b  |  35 lines

  1. /*
  2.  *                            N E X T C O D E . H
  3.  *
  4.  *  Header file for NEXTCODE.C, a module in EXPAND.  EXPAND is a file
  5.  *  maintenance utility to decompress files.  It is compatible with the
  6.  *  public domain COMPRESS v4.0 by Spencer W. Thomas, et al.
  7.  *
  8.  *-----------------------------------------------------------------------
  9.  *  Author: Lyle V. Rains
  10.  *      Based on the sources of COMPRESS.C v4.0 by Spencer Thomas, et al.
  11.  *-----------------------------------------------------------------------
  12.  *  Revision History:
  13.  */
  14.  
  15. #ifdef NEXTCODE
  16.  
  17.   /*
  18.    * Internal definitions for NEXTCODE.C
  19.    */
  20.  
  21. # include <stdio.h>
  22. # include "system.h"
  23. # include "expand.h"
  24.  
  25.   typedef unsigned char UCHAR;
  26.  
  27. #endif
  28.  
  29.  
  30. /*
  31.  * Externally visible objects in NEXTCODE.C
  32.  *    extern int nextcode(FILE *in, CODE * const codeptr, const int bits, const CODE highcode);
  33.  */
  34. extern int nextcode();
  35.